// Tests the Vehicle and Car classes

public class CarTest
{
   public static void main(String[] args)
   {
      Vehicle v = new Car();

      System.out.println(v.getNumOfWheels());
   }
}
